home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000184_news@newsmaster….columbia.edu _Thu Feb 5 09:57:18 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA29229
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 5 Feb 1998 09:57:18 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA02209
  7.     for kermit.misc@watsun; Thu, 5 Feb 1998 09:57:17 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: k95's answer
  12. Date: 5 Feb 1998 14:57:14 GMT
  13. Organization: Columbia University
  14. Lines: 51
  15. Message-ID: <6bck0a$p20$1@apakabar.cc.columbia.edu>
  16. References: <6bcimu$aak$1@mozart.jlc.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8367
  19.  
  20. In article <6bcimu$aak$1@mozart.jlc.net>,
  21. Glenn Sherman <gsherman@remove_this.jlc.net> wrote:
  22. : I want to be able to receive calls on my notebook.  I have a script
  23. : that sets up the terminal and modem (I think).  When I run the script
  24. : I get the following...
  25. : Good Afternoon, smile!
  26. :  Waiting for phone call...
  27. :  Device: com3, modem: hayes-2400, speed: 57600
  28. :  Answer timeout:  (none)
  29. :  To cancel: type Ctrl-C (hold down Ctrl, press C).
  30. : PROGRAM ERROR - No response handler for modem type 10      <- Call comes in
  31. : ANSWER Failure:  ""
  32. : The script is...
  33. : --------------------------------------------------------------
  34. : ; ActionTec modem setup
  35. : set terminal type qnx
  36. : set port com3
  37. : set modem hayes                ; starting point
  38. : set modem name ActionTec PCMCIA
  39. : set modem capabilities EC DC        ; error correction / data compression
  40. : set modem speed-matching off
  41. : set modem error-correction on
  42. : set modem compression off
  43. : set modem maximum-speed 57600
  44. : set speed 57600
  45. : answer
  46. : --------------------------------------------------------------
  47. : What should I be doing next...the calling computer is a Qnx machine
  48. : and it will be spawning a login on its end.  I want to be able to
  49. : just "connect" and see the login prompt from the Qnx computer.
  50. The message "PROGRAM ERROR - No response handler for modem type 10" comes
  51. from K95, but it shouldn't.  We'll contact you offline to see if we can
  52. find out what's going on.
  53.  
  54. In the meantime, I'd recommend the following:
  55.  
  56.  1. If you are not using K95 1.1.15 (the current version), please patch
  57.     up to it:  http://www.columbia.edu/kermit/k95patch.html.
  58.  
  59.  2. Switch from "set modem type hayes, set port com1" to "set tapi line"
  60.     and let Microsoft TAPI control the modem.
  61.  
  62. - Frank